home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 7: Sunsite / Linux Cubed Series 7 - Sunsite Vol 1.iso / system / admin / linuxcon.000 / linuxcon / linuxconf-1.6 / xconf / error.c < prev    next >
C/C++ Source or Header  |  1995-01-08  |  267b  |  17 lines

  1. #include "../misc/misc.h"
  2. #include "xconf.h"
  3. #include "components.h"
  4.  
  5. /*
  6.     Print a notice to the user.
  7. */
  8. void xconf_notice (const NOTICE *notice)
  9. {
  10.     if (notice != NULL){
  11.         char buf[2000];
  12.         if (notice->format (buf,2000-1) != -1){
  13.             xconf_notice ("%s",buf);
  14.         }
  15.     }
  16. }
  17.